gtk/gtknotebook.c property nick and blurb should be marked with P_(), not
authorSven Neumann <sven@gimp.org>
Tue, 12 Aug 2008 11:32:35 +0000 (11:32 +0000)
committerSven Neumann <neo@src.gnome.org>
Tue, 12 Aug 2008 11:32:35 +0000 (11:32 +0000)
2008-08-12  Sven Neumann  <sven@gimp.org>

* gtk/gtknotebook.c
* gtk/gtkradiotoolbutton.c: property nick and blurb should be
marked with P_(), not _().

svn path=/trunk/; revision=21091

ChangeLog
gtk/gtknotebook.c
gtk/gtkradiotoolbutton.c

index 6c7d6f078c3b1d1c3bb5b1cb12a172eab4e43e54..efb482e7aac2e8c102f48009af622a71b7fac691 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-12  Sven Neumann  <sven@gimp.org>
+
+       * gtk/gtknotebook.c
+       * gtk/gtkradiotoolbutton.c: property nick and blurb should be
+       marked with P_(), not _().
+
 2008-08-12  Michael Natterer  <mitch@imendio.com>
 
        * examples/gtkdial/gtkdial.c
index 75521c701d37eedc8ba7b48b842881032c4cee8d..2773471d10e3ee514f5517b5e6427b4c33b806fe 100644 (file)
@@ -831,8 +831,8 @@ gtk_notebook_class_init (GtkNotebookClass *class)
    */
   gtk_widget_class_install_style_property (widget_class,
                                            g_param_spec_int ("arrow-spacing",
-                                                             _("Arrow spacing"),
-                                                             _("Scroll arrow spacing"),
+                                                             P_("Arrow spacing"),
+                                                             P_("Scroll arrow spacing"),
                                                              0,
                                                              G_MAXINT,
                                                              0,
index 68cb5fe6cd139b15e597b0bbadd829a4be8a89ba..e5e385173bfddb22c898ab9b1e0b933359e39226 100644 (file)
@@ -62,8 +62,8 @@ gtk_radio_tool_button_class_init (GtkRadioToolButtonClass *klass)
   g_object_class_install_property (object_class,
                                   PROP_GROUP,
                                   g_param_spec_object ("group",
-                                                       _("Group"),
-                                                       _("The radio tool button whose group this button belongs to."),
+                                                       P_("Group"),
+                                                       P_("The radio tool button whose group this button belongs to."),
                                                        GTK_TYPE_RADIO_TOOL_BUTTON,
                                                        GTK_PARAM_WRITABLE));